home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / mus / play / tracker_4_31.lzh / tracker / Arch / config.h.sample < prev   
Text File  |  1995-04-22  |  857b  |  29 lines

  1. /* sample config.h file for new ports */
  2.  
  3. /* se:ts=3:sw=3: */
  4. #define IS_POSIX            /* OS uses POSIX getpgrp(void) */
  5.  
  6. /* You have to define exactly one of USE_TERMIOS / USE_SGTTY */
  7. #define USE_TERMIOS        /* use POSIX termios */
  8. #undef USE_SGTTY            /* use old BSD tty modes */
  9.  
  10. #define MALLOC_NOT_IN_STDLIB    /* include malloc.h */
  11.  
  12. #define KLUDGE_TAG        /* unused right now. Do not change */
  13.  
  14. #define USE_AT_EXIT        /* if your system has a working atexit() */
  15.  
  16. #define SIGNED                /* if your chars are unsigned by default */
  17.  
  18. typedef void *GENERIC;    /* define pointer to data */
  19. /* typedef char *GENERIC; */
  20.  
  21. #define P(args) args        /* use full prototypes */
  22. /* #define P(x) ()    */
  23.  
  24. #define ID(x)                /* don't put RCS Id into programs (place hog) */
  25. /* #define ID(x)  LOCAL char id[]= x ; */
  26.  
  27. /* function for case independent comparisons */
  28. /* #define stricmp    strcasecmp    */
  29.